Skip to content

chore(deps): bump the all-julia-packages group across 2 directories with 1 update#472

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/julia/all-julia-packages-69f7daec7e
Open

chore(deps): bump the all-julia-packages group across 2 directories with 1 update#472
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/julia/all-julia-packages-69f7daec7e

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 14, 2026

Copy link
Copy Markdown
Contributor

Updates the requirements on and LinearSolve to permit the latest version.
Updates LinearSolve to 5.0.0

Release notes

Sourced from LinearSolve's releases.

v5.0.0

LinearSolve v5.0.0

Diff since v3.86.1

Breaking changes

  1. Reading .cache off the return of solve!/solve no longer works — it is always nothing.
    • Affected downstream: OrdinaryDiffEq (threads linres.cache through chained solves in 6 files) — a parallel PR migrates it off the pattern and must merge before 5.0 releases. NonlinearSolve reads only .u/.retcode and is unaffected (verified below). LinearSolve internals never read sol.cache.
    • Migration: keep the LinearCache you called solve! on:
      # before                                   # after
      sol = solve!(cache)                        sol = solve!(cache)
      linsolve = sol.cache                       linsolve = cache
      For one-shot solve(prob, alg) where you previously continued via sol.cache, switch to cache = init(prob, alg); sol = solve!(cache).
  2. cleanup_petsc_cache!(sol::LinearSolution), cleanup_mumps_cache!(sol::LinearSolution), cleanup_superludist_cache!(sol::LinearSolution) methods are removed (they read sol.cache.cacheval). Use the LinearCache methods from an init/solve! cycle: cleanup_*_cache!(cache). GC finalizers remain as the safety net for one-shot solve(prob, alg). Docstrings, docs pages, and the extension test suites are migrated accordingly.
  3. Sublibrary/test compat bumps: LinearSolve = "5" in lib/LinearSolveAutotune (→ 1.13.0), lib/LinearSolvePyAMG (→ 1.3.0), docs/, and all test/*/Project.toml.

Merged pull requests:

Closed issues:

  • Batch mode (#552)
  • ForwardDiff autodiff with PureKLUFactorization is very slow through implicit ODE solver (#1064)
  • LinearSolve v3.85.2+ broke dense implicit ODE solves with ComponentArray u0 (#1075)
  • Static LU path returns retcode Success with Inf/NaN solution on singular SMatrix (#1084)
Commits

Updates LinearSolve to 5.0.0

Release notes

Sourced from LinearSolve's releases.

v5.0.0

LinearSolve v5.0.0

Diff since v3.86.1

Breaking changes

  1. Reading .cache off the return of solve!/solve no longer works — it is always nothing.
    • Affected downstream: OrdinaryDiffEq (threads linres.cache through chained solves in 6 files) — a parallel PR migrates it off the pattern and must merge before 5.0 releases. NonlinearSolve reads only .u/.retcode and is unaffected (verified below). LinearSolve internals never read sol.cache.
    • Migration: keep the LinearCache you called solve! on:
      # before                                   # after
      sol = solve!(cache)                        sol = solve!(cache)
      linsolve = sol.cache                       linsolve = cache
      For one-shot solve(prob, alg) where you previously continued via sol.cache, switch to cache = init(prob, alg); sol = solve!(cache).
  2. cleanup_petsc_cache!(sol::LinearSolution), cleanup_mumps_cache!(sol::LinearSolution), cleanup_superludist_cache!(sol::LinearSolution) methods are removed (they read sol.cache.cacheval). Use the LinearCache methods from an init/solve! cycle: cleanup_*_cache!(cache). GC finalizers remain as the safety net for one-shot solve(prob, alg). Docstrings, docs pages, and the extension test suites are migrated accordingly.
  3. Sublibrary/test compat bumps: LinearSolve = "5" in lib/LinearSolveAutotune (→ 1.13.0), lib/LinearSolvePyAMG (→ 1.3.0), docs/, and all test/*/Project.toml.

Merged pull requests:

Closed issues:

  • Batch mode (#552)
  • ForwardDiff autodiff with PureKLUFactorization is very slow through implicit ODE solver (#1064)
  • LinearSolve v3.85.2+ broke dense implicit ODE solves with ComponentArray u0 (#1075)
  • Static LU path returns retcode Success with Inf/NaN solution on singular SMatrix (#1084)
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…ith 1 update

Updates the requirements on  and [LinearSolve](https://github.com/SciML/LinearSolve.jl) to permit the latest version.

Updates `LinearSolve` to 5.0.0
- [Release notes](https://github.com/SciML/LinearSolve.jl/releases)
- [Commits](https://github.com/SciML/LinearSolve.jl/commits/v5.0.0)

Updates `LinearSolve` to 5.0.0
- [Release notes](https://github.com/SciML/LinearSolve.jl/releases)
- [Commits](https://github.com/SciML/LinearSolve.jl/commits/v5.0.0)

---
updated-dependencies:
- dependency-name: LinearSolve
  dependency-version: 5.0.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
- dependency-name: LinearSolve
  dependency-version: 5.0.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file julia Pull requests that update julia code labels Jul 14, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file julia Pull requests that update julia code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants